! Configuration by Bento ;) 
! mailto:mauricio@bentow.com.br

configure terminal
	hostname R2
	service password-encryption
	enable secret cisco
	
	line console 0
		password cisco
		login
		exit

	line vty 0 4
		password cisco
		login
		exit

	int s0/0
		description "DTE Link to R1"
		ip address 172.16.1.6 255.255.255.252
		encapsulation ppp
		bandwidth 2000
		no shutdown
		exit
	
	int s0/1
		description "DTE Link to R3"
		ip address 172.16.1.14 255.255.255.252
		encapsulation ppp
		bandwidth 2000
		no shutdown
		exit

	int f0/0
		description "LAN"
		ip address 192.168.2.1 255.255.255.0
		no shutdown
		exit
	
	router eigrp 200
		network 172.16.1.0
		network 192.168.2.0
		no auto-summary
		exit
	

exit
	
	

copy running-config startup-config